home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue47 / IntBase / IB_API_Demo.dpr < prev    next >
Encoding:
Text File  |  1999-04-23  |  649 b   |  26 lines

  1. program IB_API_Demo;
  2. (*******************************************************
  3.  
  4.   This demo project provides some simple examples - 
  5.   see the explanations in each unit header.
  6.   
  7.  *******************************************************)
  8.  
  9. uses
  10.   frs_Ibase in 'frs_Ibase.pas',
  11.   frs_ibase_object in 'frs_ibase_object.pas',
  12.   frs_IBStartParams in 'frs_IBStartParams.pas',
  13.   UnitAttachDB in 'UnitAttachDB.pas',
  14.   UnitUserInfo in 'UnitUserInfo.pas',
  15.   UnitConsoleInterface in 'UnitConsoleInterface.pas',
  16.   UnitQueryDB in 'UnitQueryDB.pas';  
  17.  
  18.   {$R *.RES}
  19.  
  20. begin
  21.  
  22.   //Display a simple menu in the console;
  23.   ConsoleMenu;
  24.   
  25. end.
  26.